Package-level declarations

Types

Link copied to clipboard
class DecodedJws(val header: JwsHeader, val payload: ByteArray, val signature: ByteArray, val parts: List<String>, val signerDid: String? = null)

DecodedJws is a compact JWS decoded into its parts.

Link copied to clipboard
object Jws

Json Web Signature (JWS) is a compact signature format that is used to secure messages. Spec: https://datatracker.ietf.org/doc/html/rfc7515

Link copied to clipboard
class JwsHeader(val typ: String? = null, val alg: String? = null, val kid: String? = null)

JSON Web Signature (JWS) Header Parameters